vector_multiply_vector

Syntax:

vector_multiply_vector(vec1, vec2)

Arguments:

Argument Name Type Description
vec1vectorfirst vector to multiply
vec2vectorsecond vector to multiply

Returns: (vector)

Description:

Multiplies the values of each vector straight across. If the vectors are of different sizes then the smaller vector will be converted and filled with 0s.

Back: Operations
Next: vector_subtract_vector